projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c324e02
)
* lisp/gnus/gnus.el (gnus): Fix a check to handle native compilation.
author
Andrea Corallo
<akrl@sdf.org>
Mon, 22 Jun 2020 22:33:09 +0000
(
00:33
+0200)
committer
Andrea Corallo
<akrl@sdf.org>
Mon, 22 Jun 2020 22:33:09 +0000
(
00:33
+0200)
lisp/gnus/gnus.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/gnus.el
b/lisp/gnus/gnus.el
index caeab7f55af469ac2201a9c39f4b8b4d35a03250..89d5d120549a576edf9215c47f32dbd25d0aa16a 100644
(file)
--- a/
lisp/gnus/gnus.el
+++ b/
lisp/gnus/gnus.el
@@
-4126,8
+4126,9
@@
prompt the user for the name of an NNTP server to use."
;; file.
(unless (string-match "^Gnus" gnus-version)
(load "gnus-load" nil t))
- (unless (byte-code-function-p (symbol-function 'gnus))
- (message "You should byte-compile Gnus")
+ (unless (or (byte-code-function-p (symbol-function 'gnus))
+ (subr-native-elisp-p (symbol-function 'gnus)))
+ (message "You should compile Gnus")
(sit-for 2))
(let ((gnus-action-message-log (list nil)))
(gnus-1 arg dont-connect slave)